Make itty bitty mount more compact
[clinton/3d-models.git] / carriage adapter / itty-wilson.scad
CommitLineData
f9a12374
CE
1/*
2min y = 0
3max y = 100
4min x = 1205
5max x = 1254
6
7Makerfair X carriage plate adapter for the Wilson RepRap.
8Copyright (c) 2015 Clinton Ebadi <clinton@unknownlamer.org>
9
10 This program is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
22
23Measurements reverse engineered from
24https://github.com/RickSisco/MakerFarm-Prusa-i3v-12-Inch
25
26Intended for use with the itty bitty dual extruder series.
27
28Source needs a good cleanup. Evil loops that don't take advantage of
29the geometry of the object abound.
30
62f36d7f
CE
31major todo:
32
33 - square hole placement is a total mess
34
f9a12374
CE
35*/
36
37use <MCAD/nuts_and_bolts.scad>
38
62f36d7f
CE
39$fn = 64;
40
70d8c6b3
CE
41hole_tolerance = 0.6; // widen holes a bit, may still need to drill out
42
43// Size of mounting bolt heads so they can be recessed
44bolthead_depth = 1.6;
45bolthead_diameter = 5.5 + hole_tolerance;
46
62f36d7f
CE
47carriage_height = 64;
48carriage_width = 52;
f9a12374
CE
49
50plate_width = 75; // wilson carriage is only 50mm wide!
70d8c6b3 51plate_depth = 6 + bolthead_depth; // wilson default depth = 8, makerfarm = 6
f9a12374
CE
52
53plate_cut_height = 6.5;
54plate_cut_width = 6;
70d8c6b3 55plate_cut_distance = 13.3;
f9a12374 56plate_cut_y_offset = 27;
84a5e569 57plate_cut_bolt = 3 + hole_tolerance;
70d8c6b3 58plate_cut_x_bolt_offset = plate_cut_distance + plate_cut_bolt / 2;
f9a12374 59
62f36d7f 60plate_extra_height = 4; // make plate a bit taller so it is structurally sound
84a5e569 61
70d8c6b3 62plate_height = plate_cut_height + plate_cut_y_offset + plate_extra_height;
f9a12374
CE
63
64lower_cut_y_offset = 5.33; // 5.325 in CAD
65lower_bolt_x_offset = 1.5 + plate_cut_bolt / 2;
66lower_bolt_y_offset = 3.275 + plate_cut_bolt / 2;
67
84a5e569 68carriage_bolt = 4 + hole_tolerance;
62f36d7f 69carriage_hole_spacing = 23;
f9a12374
CE
70carriage_clearance = 20; // holes are 20mm from bottom of plate
71carriage_y_offset = plate_cut_y_offset + plate_cut_height + carriage_clearance;
84a5e569 72carriage_nut_depth = 3.2 + 3.2/2 + 0.1; // m4 nut depth + half of an m4 nut + tolerance
70d8c6b3 73carriage_offset = [(plate_width - carriage_width) / 2, 0 , 0];
f9a12374
CE
74
75corner_radius = 3; // round off the corners to make it look nicer
76
84a5e569 77
70d8c6b3
CE
78difference () {
79 union () {
80 translate (carriage_offset) carriage_mount_base ();
81 shelf_mount_base ();
82 }
83 translate (carriage_offset) carriage_mount_holes ();
84 shelf_mount_holes ();
85}
f9a12374 86
70d8c6b3
CE
87// mount to wilson x-carriage
88module carriage_mount_base () {
89 linear_extrude (height = plate_depth, convexity = 8) {
90 // outline of plate + bolt holes
91 translate ([corner_radius, corner_radius, 0]) {
92 minkowski () {
93 square ([carriage_width - corner_radius*2, carriage_height - corner_radius]);
94 circle (r = corner_radius);
f9a12374 95 }
f9a12374 96 }
70d8c6b3
CE
97 }
98}
99
100module carriage_mount_holes () {
101 #translate ([(carriage_width - carriage_hole_spacing) / 2, (carriage_height - carriage_hole_spacing) /2, 0])
102 for (x = [0, carriage_hole_spacing], y = [0, carriage_hole_spacing]) {
103 translate ([x, y, -0.1]) cylinder (d = carriage_bolt, h = plate_depth+1);
104 }
105
106 // after extruding, cut out spaces for M4 hex nuts.
107 translate ([(carriage_width - carriage_hole_spacing) / 2, (carriage_height - carriage_hole_spacing) /2, plate_depth - carriage_nut_depth]) {
108 for (x = [0, carriage_hole_spacing], y = [0, carriage_hole_spacing]) {
109 translate ([x, y, 0]) linear_extrude (height = carriage_nut_depth + 0.01) nutHole (size = carriage_bolt, proj = 1);
f9a12374
CE
110 }
111 }
112}
113
84a5e569 114// mount for makerfarm extruder shelf
70d8c6b3
CE
115module shelf_mount_base () {
116 linear_extrude (height = plate_depth, convexity = 8) {
117 translate ([corner_radius, corner_radius, 0]) {
118 minkowski () {
119 square ([plate_width - corner_radius*2, plate_height - corner_radius*2]);
120 circle (r = corner_radius);
84a5e569 121 }
70d8c6b3
CE
122 }
123 }
124}
f9a12374 125
70d8c6b3
CE
126module shelf_mount_holes () {
127 depth = plate_depth+0.2;
128 translate ([0, 0, -0.1]) {
84a5e569 129 // upper shelf mount
70d8c6b3
CE
130 translate ([plate_cut_width/2, plate_cut_y_offset, 0]) {
131 for (x = [-0.001, plate_cut_width + plate_cut_distance,
132 plate_width - plate_cut_width + 0.001, plate_width - plate_cut_width*2 - plate_cut_distance])
133 #translate ([x, plate_cut_height/2, 0]) cube ([plate_cut_width + hole_tolerance, plate_cut_height, depth], center = true);
134
135 // looks like the bolt is at the midpoint between the cut outs
136 for (x = [plate_cut_x_bolt_offset - plate_cut_width, plate_width - plate_cut_x_bolt_offset])
137 translate ([x, plate_cut_height / 2, 0]) {
138 #cylinder (d = plate_cut_bolt, h = depth);
139 cylinder (d = bolthead_diameter, h = bolthead_depth+0.1);
140 }
84a5e569 141
84a5e569
CE
142 }
143
144 // lower shelf mount
145 translate ([0, lower_cut_y_offset, 0]) {
62f36d7f 146 for (x = [plate_cut_width/2 - 0.01, plate_width - plate_cut_width/2 + 0.01]) {
84a5e569 147 // lower cut out is closer to 6mm than 6.5mm in cad drawings
70d8c6b3
CE
148 translate ([x, plate_cut_height/2, 0]) cube ([plate_cut_width, plate_cut_height - 0.5, depth*2], center=true);
149 }
84a5e569
CE
150 // I think the intention is for the screw holes to be centered over the cut out
151 for (x = [lower_bolt_x_offset, plate_width - lower_bolt_x_offset])
70d8c6b3
CE
152 translate ([x, plate_cut_height + lower_bolt_y_offset, 0]) {
153 cylinder (d = plate_cut_bolt, h = depth);
154 cylinder (d = bolthead_diameter, h = bolthead_depth+0.1);
155 }
f9a12374
CE
156 }
157 }
f9a12374 158}